home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / THINKC / TCL1 / JOHNLOVE / C_SOURCE / CMYBITMA.H1 < prev    next >
Text File  |  1992-01-27  |  828b  |  39 lines

  1. /*********************************************************
  2.  "CmyBitMapPane.h"
  3.  
  4.  by John A. Love, III [Washington Apple Pi Users' Group]
  5.  
  6.  using Symantec's "THINK C", v 5.0.1
  7.  ... as derived from their "TCL Starter" files
  8.  *********************************************************/
  9.  
  10.  
  11.  
  12.  
  13. #define    _H_CmyBitMapPane
  14.  
  15.  
  16. #include <CBitMapPane.h>                    /* Interface for its superclass */
  17.  
  18. #include "CmyBitMap.h"
  19.  
  20.  
  21. struct CmyBitMapPane : CBitMapPane    {
  22.  
  23.     // add just one Instance Method because of my special BitMap parm:
  24.     void    ImyBitMapPane(CView *anEnclosure,
  25.                           CBureaucrat *aSupervisor,
  26.                           short aWidth, short aHeight,
  27.                           short aHEncl, short aVEncl,
  28.                           SizingOption aHSizing, SizingOption aVSizing,
  29.                           LongRect *aBounds,
  30.                           CmyBitMap *aBitMap,
  31.                           Boolean makePort);
  32.  
  33. };
  34.  
  35.  
  36.  
  37.  
  38. /* end: "CmyBitMapPane.h" */
  39.